Welcome![Sign In][Sign Up]
Location:
Search - zip l

Search list

[Documentsl-sock.zip

Description:
Platform: | Size: 291712 | Author: | Hits:

[DocumentsL-M算法(BP的一种改进算法)应用实例.zip

Description:
Platform: | Size: 1015 | Author: | Hits:

[Other resource嵌入式文件系统ucfs

Description: 嵌入式文件系统ucfs.zip This project should serve as an \"easy start\" with /FS. All paths are relative to the project file. You should therefore be able to copy the entire directory (including all subdirectories) to any location on your harddrive.-embedded file system ucfs.zip This project should serv e as an "easy start" with / FS. All paths are Informatsii ive to the project file. You should therefore be able to copy the entire directory (including al l subdirectories) to any location on your hardd RCD.
Platform: | Size: 51504 | Author: 测试 | Hits:

[Communicationbpsk_dsss

Description: There are two files in the zip folder. bpsk_spread.m and jakesmodel.m Steps for simulation: 1] Run jakesmodel.m first 2] Then run bpsk_spread.m . 3] Note that during the first run bpsk_spread.m has no rayleigh fading.This is because the corresponding code has been commented 4] The resulting performance is stored in BER_awgn. 5] Now uncomment the Rayleigh Fading code in bpsk_spread.m file. 6] Same time comment BER_awgn (line 112) and uncomment BER_ray variable. 7] Run the simulation. To compare the perfromances of the receiver using DSSS plot the BER_awgn and BER_ray >>semilogy([1:8],BER_awgn(1:8), g* ) hold on semilogy([1:8],BER_ray(1:8), -.b* ) hold on grid on -There are two zip files in the folder. Bpsk_ spread.m and jakesmodel.m Steps for simulatio n : 1] Run jakesmodel.m first 2] Then run bpsk_spre ad.m. 3] Note that during the first run bpsk_spr ead.m has no Rayleigh fading.This is because th e corresponding code has been commented 4] The r esulting performance is stored in BER_awgn. 5] Now uncomment the Rayleigh Fading code in bpsk_ spread.m file. 6] Same time comment BER_awgn (l 112 produced mostly in developed areas) and uncomment BER_ray variable. 7] Run the simulation. To compare the perfromances of the receiver using DSSS plot and the BER_awgn BE R_ray
Platform: | Size: 2837 | Author: 朱振希 | Hits:

[Other resourceAdvanced Filter Design using MATLAB

Description: AFD - Advanced Filter Design using MATLABMiroslav D. Lutovac, Dejan V. Tosicversion 1.00 released 15 October 1999This program is freeware.Unpack with path names, for exampleDOS: pkunzip -d afdunix: unzip -L afdAfter unpacking afd.zip, and run MATLAB,change directory to afdfrom the MATLAB command window.Execute demoafd to quickly scan the AFD operation.
Platform: | Size: 280475 | Author: 肖克 | Hits:

[GUI Developbrew window manager

Description:

 

Objective
This topic describes how to create a windowed application that will share the display with other applications.
Brew® MP windowed applications need to be written differently than traditional Brew MP applications. Traditional Brew MP applications, when running in the foreground, occupy full screen space and can modify the display at any time. In the windowing framework, multiple applications share the display at the same time and are not allowed to modify the display arbitrarily. A windowed application also needs to create one or more widgets to be used to create the windows.
A windowed application needs to:
·                  Create and initialize one or more widgets to be passed to IWindowMgr_CreateWindow().
The application can implement its own IWidget, or it can make use of an existing IWidget.
·                  Handle the EVT_APP_START_WINDOW event (and create a window).
·                  Implement handlers for visibility changes, focus changes, and extent changes. The implementation of these handlers is dependent on the details of the application.
·                  Draw in two stages:
·                                  Tell the container that drawing is necessary (ICONTAINER_Invalidate()).
·                                  Draw only when told to draw by the container (IWIDGET_Draw()).
Note: A windowed application should not call any functions that modify IDisplay directly. This includes explicit IDisplay function calls or implicit updates, such as calls to IIMAGE_Draw() or ICONTROL_Redraw(). Drawing should happen only on demand, for example, when IWIDGET_Draw() is called for the widget used to create the window. Existing Widget based applications follow these guidelines and, with minor modifications, can be ported to the windowing framework.
Event handling
A windowed application must respond to these events:
EVT_APP_START_WINDOW and EVT_APP_START
A window-based application receives EVT_APP_START_WINDOW first. If the application returns TRUE for this event, the application does not receive EVT_APP_START. If an application needs to support both the environments (window based and non-window based), it should handle both events.
When the application receives EVT_APP_START_WINDOW, it should create one or more windows.
If creation of IWindowMgr0 fails while handling EVT_APP_START_WINDOW, the application should assume that the platform does not support window-based applications. In this case, the application should return FALSE and continue the application logic in the code for EVT_APP_START.
EVT_APP_SUSPEND and EVT_APP_RESUME
After an application returns TRUE for EVT_APP_START_WINDOW, it will not receive EVT_APP_SUSPEND and EVT_APP_RESUME as non-windowed Brew MP applications do. Instead, the application must check for window status events that are sent to the widget through EVT_WDG_SETPROPERTY events. For EVT_WDG_SETPROPERTY events, wParam indicates which property was set, and dwParam specifies the value of the property. When the AEEWindowMgrExt_PROPEX_STATE property has a value of AEEWindowMgrExt_STATE_VISIBLE, the window is visible.
EVT_WDG_WINDOWSTATUS
The EVT_WDG_WINDOWSTATUS event is sent to a widget to notify it about various window related status messages. AEEWindowStatus.h contains information on the meaning of various status messages.
Sample code location

ZIP filename
Location
Run app
hellowindowapp
Brew MP Library
·                       Download and extract the ZIP file.
·                       Compile the app.
·                       Run it on the Brew MP Simulator.

Example of a windowed application
In the hellowindowapp sample, HelloWindowApp_HandleEvent handles the EVT_APP_START_WINDOW event and creates soft key and pop-up windows:
   case EVT_APP_START_WINDOW:   
      DBGPRINTF("EVT_APP_START_WINDOW");
 
      // Create the softkey and popup windows
      HelloWindowApp_CreateSoftkey(pMe);
      HelloWindowApp_CreateOrActivatePopup(pMe);
 
      // Handling this event tells Brew that we are a windowing
      // application.
      return TRUE;  
HelloWindowApp_CreateSoftkey() creates the soft key widget, sets the color text of the widget, then calls HelloWindowApp_CreateWindow() to create the window.
   WidgetWindow *pWindow = &pMe->softkeyWindow;
  
   if (pWindow->piWindowWidget != NULL) return;
   pWindow->pszDbgName = "Softkey";
   pWindow->pMe = pMe;
  
   (void) ISHELL_CreateInstance(pMe->applet.m_pIShell, AEECLSID_SoftkeyWidget,
            (void **) &pWindow->piWindowWidget);
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WidgetExtent extent = {0, HWA_SOFTKEY_HEIGHT};
      IWidget_SetExtent(pWindow->piWindowWidget, &extent);
   }
  
   (void) IWidget_SetBGColor(pWindow->piWindowWidget, MAKE_RGBA(200,200,200,255));
  
   // Now set the softkeys text
   {
      IWidget *piTextWidget = NULL;
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY1, &piTextWidget);
     
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Hover", TRUE);
      }
      RELEASEIF(piTextWidget);
 
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY2, &piTextWidget);
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Close", TRUE);
      }
      RELEASEIF(piTextWidget);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Softkey);  
HelloWindowApp_CreateWindow() creates the soft key window, as follows:
   int result;
   uint32 winId;
   AEEWindowProp propList[1];
  
   // Set custom window handler
   HANDLERDESC_Init(&pWindow->hdHandler, HelloWindowApp_WindowHandler, pWindow, NULL);
   IWIDGET_SetHandler(pWindow->piWindowWidget, &pWindow->hdHandler);
        
   propList[0].id = AEEWindowMgrExtProp_CLASS;
   propList[0].pbyLen = sizeof(winClass);
   propList[0].pby = (void *) &winClass;
     
   result = IWindowMgr_CreateWindow(pMe->piWindowMgr, (IQI*) (void *) pWindow->piWindowWidget,
      propList, ARR_SIZE(propList), &winId);
 
   if (result != SUCCESS) {
      DBGPRINTF("Window creation failed for %s: %d", pWindow->pszDbgName, result);
      HelloWindowApp_DestroyWindow(pWindow);
   } else {
      DBGPRINTF("Window %s created: id=%d", pWindow->pszDbgName, winId);
   }
HelloWindowApp_CreateOrActivatePopup() creates the widget for the pop-up window, then calls HelloWindowApp_CreateWindow() to create the pop-up window.
   pWindow->piWindowWidget = HelloWindowApp_CreateAndInitImageWidget(
                                pMe,
                                "popups.main" // Image as defined in appinfo.ini
                             );
 
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WExtent extent = {HWA_POPUP_WIDTH, HWA_POPUP_HEIGHT};
      IWIDGET_SetExtent(pWindow->piWindowWidget, &extent);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Popup);
Related information
·                  See Brew MP Widgets Technology Guide: Creating a Widgets application
·                  See Brew MP API Reference

Base version:
Brew MP 1.0
Tested version:
Brew MP 1.0
Phone tested:
No

 

Platform: | Size: 439828 | Author: bluecrest | Hits:

[ELanguagetiger

Description: 一个FREE编译器原码,用于学习LEX和YA- A FREE compiler original code, uses in to study LEX and YA
Platform: | Size: 62464 | Author: jqx | Hits:

[OpenGL programglpng

Description: loading png files in OpenGL
Platform: | Size: 309248 | Author: 在这里 | Hits:

[matlabAdvanced Filter Design using MATLAB

Description: AFD - Advanced Filter Design using MATLABMiroslav D. Lutovac, Dejan V. Tosicversion 1.00 released 15 October 1999This program is freeware.Unpack with path names, for exampleDOS: pkunzip -d afdunix: unzip -L afdAfter unpacking afd.zip, and run MATLAB,change directory to afdfrom the MATLAB command window.Execute demoafd to quickly scan the AFD operation.-AFD- Advanced Filter Design using MATLABMiroslav D. Lutovac, Dejan V. Tosicversion 1.00 released 15 October 1999This program is freeware.Unpack with path names, for exampleDOS: pkunzip-d afdunix: unzip-L afdAfter unpacking afd.zip, and run MATLAB,change directory to afdfrom the MATLAB command window.Execute demoafd to quickly scan the AFD operation.
Platform: | Size: 280576 | Author: 肖克 | Hits:

[GDI-BitmapUsing The TIFF Library

Description: libtiff库的源码程序的演示代码,该例子用来演示如何读tiff图像,是初学tiff图像格式的入门程序!-libtiff library procedures demo source code, the examples used to demonstrate how to read tiff images, when a tiff image formats entry procedures!
Platform: | Size: 9216 | Author: 五月光 | Hits:

[Other Embeded programstm32f10x_stdperiph_lib_v3.0.0

Description: stm32库文件3.0 版。截止09.4.30最新版。内有英文说明,在英文官方下的。中文的没有。相对2.x版本变动较大 stm32f10x_stdperiph_lib_v3.0.0.zip-The STM32F10x Standard Peripheral Library is a complete package, consisting of device drivers for all of the standard device peripherals, for High-, Medium- and Low- Density Devices 32-bit Flash microcontrollers
Platform: | Size: 12509184 | Author: fency | Hits:

[Consolewinscript_example

Description: VBScript wrapper class allow to add vbscript scenaries to applications. No MFC/ATL/etc. Example:ScriptEngine engine engine.Initialize() engine.AddDispatch(L"MyFunction",MyFunctionHandler) engine.ParseScript(L"ScriptText) engine.Execite() -VBScript wrapper class allow to add vbscript scenaries to applications. No MFC/ATL/etc. Example:ScriptEngine engine engine.Initialize() engine.AddDispatch(L"MyFunction",MyFunctionHandler) engine.ParseScript(L"ScriptText) engine.Execite()
Platform: | Size: 10240 | Author: Andrey | Hits:

[Data structskl-zip

Description: (1)以回车(‘\n’)为输入结束标志,输入数列L,分别生成一棵二叉排序树T和平衡的二叉排序树BT ; (2)对二叉排序树T作中序遍历,输出结果;-(1) a carriage return (' \ n' ) for the input end of the symbol, enter the series L, respectively, generate a binary sort tree T and balanced binary sort tree BT (2) of the binary sort tree T for the traversal, output
Platform: | Size: 1024 | Author: 丁叮 | Hits:

[Applicationsfeappv31.zip

Description: A Finite Element Analysis Program Personal Version 3.1 by Robert L. Taylor Department of Civil and Environmental Engineering University of California at Berkeley Berkeley, California 94720-1710 E-Mail: rlt@ce.berkeley.edu March 2012
Platform: | Size: 613363 | Author: Liuxin3272005 | Hits:

[Windows DevelopCRFtools.zip

Description: CRFsuite: a fast implementation of Conditional Random Fields (CRFs) CRFSuite is an implementation of Conditional Random Fields (CRFs) for labeling sequential data. The first priority of this software is to train and use CRF models as fast as possible even at the expense of its memory space and code generality. CRFsuite runs 5.4 - 61.8 times faster than C++ implementations for training. CRFsuite supports parameter estimation with L1 regularization (Laplacian prior) using Orthant-Wise Limited-memory Quasi-Newton (OW-LQN) method and L2 regularization (Gaussian prior) using Limited-memory BFGS (L-BFGS) method.,CRFsuite: a fast implementation of Conditional Random Fields (CRFs) CRFSuite is an implementation of Conditional Random Fields (CRFs) for labeling sequential data. The first priority of this software is to train and use CRF models as fast as possible even at the expense of its memory space and code generality. CRFsuite runs 5.4- 61.8 times faster than C++ implementations for training. CRFsuite supports parameter estimation with L1 regularization (Laplacian prior) using Orthant-Wise Limited-memory Quasi-Newton (OW-LQN) method and L2 regularization (Gaussian prior) using Limited-memory BFGS (L-BFGS) method.
Platform: | Size: 29696 | Author: icypriest | Hits:

[Other Embeded programDMAVR-L(ATmega128A)code

Description: DMAVR-L资料光盘(ATmega128A)源程序代码.zip-DMAVR-l data CD (ATmega128A) source code. Zip
Platform: | Size: 180224 | Author: 丁国盛 | Hits:

[OANew-WinRAR-ZIP-archive-(4)

Description: three kinds, i.e., interior PM synchronous motors which have the permanent magnets buried inside the rotor surface PM synchronous motors which have their permanent magnets mounted on the surface of the rotor and inset PM synchronous motors in which the permanent magnets are inset or partially inset into the rotor [ I l l . Depending on the magnetization orientation for the magnets, the rotor-three kinds, i.e., interior PM synchronous motors which have the permanent magnets buried inside the rotor surface PM synchronous motors which have their permanent magnets mounted on the surface of the rotor and inset PM synchronous motors in which the permanent magnets are inset or partially inset into the rotor [ I l l . Depending on the magnetization orientation for the magnets, the rotor
Platform: | Size: 3072 | Author: Shahab | Hits:

[ConsoleTRN.ZIP

Description: This program provides an example for using the truncated Newton algorithm within the SEISCOPE OPTIMIZATION TOOLBOX. ! The algorithm implemented is described in ! ! L.Metivier, R. Brossier, J. Virieux, S.Operto, ! ! Truncated Newton and full waveform inversion, 2013 ! ! SIAM Journal on Scientific Computing, Vol. 35, ! ! No. 2, pp. B401–B437,-This program provides an example for using the truncated Newton algorithm within the SEISCOPE OPTIMIZATION TOOLBOX. ! The algorithm implemented is described in ! ! L.Metivier, R. Brossier, J. Virieux, S.Operto, ! ! Truncated Newton and full waveform inversion, 2013 ! ! SIAM Journal on Scientific Computing, Vol. 35, ! ! No. 2, pp. B401–B437,
Platform: | Size: 31744 | Author: lygios | Hits:

[Other新建 WinRAR ZIP 压缩文件

Description: lmdlsamvd.fgdsbds v,c.x,bc;,bsd.,b;l,gsd(vfdbfdnfdbwqehfngfkjfghnfbv)
Platform: | Size: 480256 | Author: | Hits:

[e-language新建 WinRAR ZIP 压缩文件

Description: 是一个可以给自己做的软件加上注册机的一款源码(This is a l;qwjeqwjdoqwwudipqwooiddqwiieoqwwieo[qwei)
Platform: | Size: 2048 | Author: qq0911 | Hits:
« 1 23 »

CodeBus www.codebus.net